Skip to content

Instantly share code, notes, and snippets.

@Alimammiya
Alimammiya / gate-me-study-material.md
Last active July 28, 2026 06:58
Free GATE ME Study Material for 2027 Aspirants – Download PDFs & Notes

Free GATE ME Study Material for 2027 Aspirants – Download PDFs & Notes

Preparing for GATE Mechanical Engineering (ME) 2027 requires a well-organized study plan backed by reliable resources. This article brings together everything a GATE 2027 ME aspirant needs in one place — free downloadable notes, previous year question papers, recommended books, top YouTube channels, and the best coaching institutes to consider.

GATE is conducted every year on a rotational basis by one of the participating IITs, and it remains the gateway to M.Tech admissions at premier institutes as well as recruitment opportunities in leading PSUs. For ME aspirants targeting the 2027 cycle, the exam is expected to be held around February 2027, which means candidates now have ample time to plan a structured and thorough preparation strategy.

This page has been put together to give GATE 2027 ME candidates topic-wise study material aligned with the latest syllabus. The resources below have been curated by the UseMyNotes team to help you

@Alimammiya
Alimammiya / gate-ee-study-material.md
Last active July 28, 2026 06:58
Free GATE EE Study Material for 2027 Aspirants – Download PDFs & Notes

Free GATE EE Study Material for 2027 Aspirants – Download PDFs & Notes

Preparing for GATE Electrical Engineering (EE) 2027 requires a well-organized study plan backed by reliable resources. This article brings together everything a GATE 2027 EE aspirant needs in one place — free downloadable notes, previous year question papers, recommended books, top YouTube channels, and the best coaching institutes to consider.

GATE remains the gateway to M.Tech admissions at premier institutes like IITs, NITs, and IISc, as well as recruitment opportunities in leading PSUs. For EE aspirants targeting the 2027 cycle, having a well-organized study strategy from early on makes a real difference to the final score and overall preparation quality.

The Free GATE EE Study Material for 2027 compiled below will be useful for building notes, formula sheets, cheat sheets, and quick-reference material — everything an aspirant should have in place before diving into full-scale preparation.

Table of Contents

  • GATE 2027 EE Note
@Alimammiya
Alimammiya / gate-civil-study-material.md
Last active July 28, 2026 06:58
Free GATE Civil Study Material for 2027 Aspirants – Download PDFs & Notes

Free GATE Civil Study Material for 2027 Aspirants – Download PDFs & Notes

Preparing for GATE Civil Engineering 2027 requires a well-organized study plan backed by reliable resources. This article brings together everything a GATE 2027 Civil aspirant needs in one place — free downloadable notes, previous year question papers, recommended books, top YouTube channels, and the best coaching institutes to consider.

The GATE Civil syllabus draws from a wide spread of subjects — Engineering Mathematics, Structural Engineering, Geotechnical Engineering, Water Resources Engineering, Transportation Engineering, Environmental Engineering, and Geomatics Engineering — which is precisely why preparation for this branch can feel overwhelming without a clear plan. This page pulls together everything needed to prepare systematically for GATE 2027 Civil, sourced and curated by the UseMyNotes team.

GATE Civil has a reputation among past rankers for being one of the more demanding papers, with questions that test conceptual

@Alimammiya
Alimammiya / best-cat-coaching-in-india.md
Created July 27, 2026 08:38
Best CAT Coaching in India 2026: Top 10 Institutes Ranked (With Real Student Insights)

Best CAT Coaching in India 2026: Top 10 Institutes Ranked (With Real Student Insights)

If you've typed "best CAT coaching in India" into Google at 11 PM, half-panicked about your quant scores, you're not alone. Every year, lakhs of MBA aspirants face the same question — which institute actually gets you to a 99 percentile, and which ones are just good marketing?

I've spent time digging through student reviews, percentile data, fee structures, and faculty backgrounds to put together this honest, deep-dive guide to the best CAT coaching in India. No fluff, no paid rankings — just what actually works for real students preparing for the Common Admission Test.

How We Ranked the Best CAT Coaching Institutes in India

Before jumping into the list, here's what we actually looked at while evaluating each option:

@Alimammiya
Alimammiya / gate-ece-study-material.md
Last active July 28, 2026 06:57
Free GATE ECE Study Material for 2027 Aspirants – Download PDFs & Notes

Free GATE ECE Study Material for 2027 Aspirants – Download PDFs & Notes

Preparing for GATE Electronics and Communication Engineering (ECE) 2027 requires a well-organized study plan backed by reliable resources. This article brings together everything a GATE 2027 ECE aspirant needs in one place — free downloadable notes, previous year question papers, recommended books, top YouTube channels, and the best coaching institutes to consider.

GATE is conducted every year on a rotational basis by one of the participating IITs, and it remains the gateway to M.Tech admissions at premier institutes as well as recruitment opportunities in leading PSUs. For ECE aspirants targeting the 2027 cycle, the exam is expected to be held around February 2027, which means candidates now have ample time to plan a structured and thorough preparation strategy.

This page has been put together to give GATE 2027 ECE candidates topic-wise study material aligned with the latest syllabus. The resources below have been curated by the Use

@joshenders
joshenders / tailscale_udp_optimization.md
Last active July 28, 2026 06:58
How to improve tailscale throughput via transport layer offloading in OpenWrt 25.x

How to improve tailscale throughput via transport layer offloading in OpenWrt 25.x

Tailscale version 1.54 or later used with OpenWrt 24.10 or later (which uses kernel 6.6) enables UDP throughput improvements via transport layer offloading.

Namely, tuning two features may show improved throughput:

  • rx-udp-gro-forwarding: Enables UDP Generic Receive Offload (GRO) forwarding, which aggregates incoming UDP packets to reduce CPU overhead on receive.
  • rx-gro-list: If disabled (off), it prevents multiple flows from being aggregated simultaneously which simplifies flow handling and performance on some workloads.

[!NOTE]

@ZsZs73
ZsZs73 / pbs_up-down.sh
Last active July 28, 2026 06:56
Proxmox backup server on-demand wakeonlan wake-on-lan
#!/bin/bash
#
# Instructions
# ------------
# do the following on every node of your cluster
# - save this script to /etc/pbs_up-down.sh
# - chmod 755 /etc/pbs_up-down.sh
# - add the following line to /etc/vzdump.conf on (without the #)
# script: /etc/pbs_up-down.sh
# - set up ssh key authentication from the root@PVE and root@PBS

LLM Wiki

A pattern for building personal knowledge bases using LLMs.

This is an idea file, it is designed to be copy pasted to your own LLM Agent (e.g. OpenAI Codex, Claude Code, OpenCode / Pi, or etc.). Its goal is to communicate the high level idea, but your agent will build out the specifics in collaboration with you.

The core idea

Most people's experience with LLMs and documents looks like RAG: you upload a collection of files, the LLM retrieves relevant chunks at query time, and generates an answer. This works, but the LLM is rediscovering knowledge from scratch on every question. There's no accumulation. Ask a subtle question that requires synthesizing five documents, and the LLM has to find and piece together the relevant fragments every time. Nothing is built up. NotebookLM, ChatGPT file uploads, and most RAG systems work this way.

@joonan30
joonan30 / CLAUDE.md
Created April 9, 2026 08:57
LLM Wiki — AI for Biology: Claude Code instructions for managing a personal research knowledge base (Karpathy LLM Wiki pattern)

LLM Wiki — AI for Biology

중요: Git 워크트리 사용 금지

모든 파일은 메인 브랜치에 직접 저장한다. Git worktree를 생성하지 않는다.

A personal knowledge base for AI/deep learning papers in biology research. Follows Karpathy's LLM Wiki pattern: Original PDF → LLM markdown summary (sources) → Structured wiki page (wiki).

Language policy: All wiki content is in English. Conversation with Claude can be in Korean or English.